home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / CLIPFN20.ZIP / CFDEMO16.DPR next >
Encoding:
Text File  |  1996-05-10  |  165 b   |  13 lines

  1. program Cfdemo16;
  2.  
  3. uses
  4.   Forms,
  5.   Main_16 in 'MAIN_16.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.